TableCollection Derived Type

type, public :: TableCollection


Components

Type Visibility Attributes Name Initial
type(Table), public, POINTER :: elem(:)
integer(kind=long), public :: number

Source Code

TYPE TableCollection
    INTEGER (KIND = long) :: number
    TYPE (Table), POINTER :: elem (:)
END TYPE TableCollection